Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
array-reduce-x
Advanced tools
Reduce an array (from left to right) to a single value.
module.exports
⇒ *
⏏This method applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single value.
Kind: Exported member
Returns: *
- The value that results from the reduction.
Throws:
TypeError
If array is null or undefined.TypeError
If callBack is not a function.TypeError
If called on an empty array without an initial value.Param | Type | Description |
---|---|---|
array | array | The array to iterate over. |
callBack | function | Function to execute for each element. |
[initialValue] | * | Value to use as the first argument to the first call of the callback. If no initial value is supplied, the first element in the array will be used. Calling reduce on an empty array without an initial value is an error. |
Example
import reduce from 'array-reduce-x';
console.log(
reduce(
[0, 1, 2, 3],
function(a, b) {
return a + b;
},
0,
),
); // sum is 6
FAQs
Reduce an array (from left to right) to a single value.
The npm package array-reduce-x receives a total of 208 weekly downloads. As such, array-reduce-x popularity was classified as not popular.
We found that array-reduce-x demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.